runtime/internal/atomic.Uint32.value (field)
11 uses
	runtime/internal/atomic (current package)
		types.go#L187: 	value  uint32
		types.go#L194: 	return Load(&u.value)
		types.go#L207: 	return LoadAcq(&u.value)
		types.go#L214: 	Store(&u.value, value)
		types.go#L227: 	StoreRel(&u.value, value)
		types.go#L236: 	return Cas(&u.value, old, new)
		types.go#L250: 	return CasRel(&u.value, old, new)
		types.go#L258: 	return Xchg(&u.value, value)
		types.go#L269: 	And(&u.value, value)
		types.go#L280: 	Or(&u.value, value)
		types.go#L291: 	return Xadd(&u.value, delta)
  | 
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |